#!/bin/sh
which uci > /dev/null || exit 0
uci -q get ucitrack.@eqos[0] > /dev/null || {
  uci add ucitrack eqos > /dev/null
  uci set ucitrack.@eqos[0].init=eqos
  uci commit
}
